home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / fish / 726-750 / 741 / rkrm_devices / rkrm_devices.lha / Timer / Timer_Arithmetic.c < prev   
C/C++ Source or Header  |  1992-09-03  |  5KB  |  124 lines

  1. /*
  2.  * Copyright (c) 1992 Commodore-Amiga, Inc.
  3.  * 
  4.  * This example is provided in electronic form by Commodore-Amiga, Inc. for 
  5.  * use with the "Amiga ROM Kernel Reference Manual: Devices", 3rd Edition, 
  6.  * published by Addison-Wesley (ISBN 0-201-56775-X).
  7.  * 
  8.  * The "Amiga ROM Kernel Reference Manual: Devices" contains additional 
  9.  * information on the correct usage of the techniques and operating system 
  10.  * functions presented in these examples.  The source and executable code 
  11.  * of these examples may only be distributed in free electronic form, via 
  12.  * bulletin board or as part of a fully non-commercial and freely 
  13.  * redistributable diskette.  Both the source and executable code (including 
  14.  * comments) must be included, without modification, in any copy.  This 
  15.  * example may not be published in printed form or distributed with any
  16.  * commercial product.  However, the programming techniques and support
  17.  * routines set forth in these examples may be used in the development
  18.  * of original executable software products for Commodore Amiga computers.
  19.  * 
  20.  * All other rights reserved.
  21.  * 
  22.  * This example is provided "as-is" and is subject to change; no
  23.  * warranties are made.  All use is at your own risk. No liability or
  24.  * responsibility is assumed.
  25.  *
  26.  *****************************************************************************
  27.  *
  28.  *
  29.  * Timer_Arithmetic.c
  30.  *
  31.  * Example of timer device arithmetic functions
  32.  *
  33.  * Compile with SAS C 5.10  lc -b1 -cfistq -v -y -L
  34.  *
  35.  * Run from CLI only
  36.  */
  37.  
  38. #include <exec/types.h>
  39. #include <exec/io.h>
  40. #include <exec/memory.h>
  41. #include <devices/timer.h>
  42.  
  43. #include <clib/exec_protos.h>
  44. #include <clib/alib_protos.h>
  45. #include <clib/timer_protos.h>
  46.  
  47. #include <stdio.h>
  48.  
  49. #ifdef LATTICE
  50. int CXBRK(void) { return(0); }     /* Disable Lattice CTRL/C handling */
  51. int chkabort(void) { return(0); }  /* really */
  52. #endif
  53.  
  54. struct Library *TimerBase;  /* setup the interface variable (must be global) */
  55.  
  56. void main(int argc,char **argv)
  57. {
  58. struct timeval     *time1, *time2, *time3;
  59. struct timerequest *tr;
  60. LONG               error,result;
  61. /*------------------------------------*/
  62. /* Get some memory for our structures */
  63. /*------------------------------------*/
  64. time1=(struct timeval *)AllocMem(sizeof(struct timeval),
  65.                                MEMF_PUBLIC | MEMF_CLEAR);
  66. time2=(struct timeval *)AllocMem(sizeof(struct timeval),
  67.                                MEMF_PUBLIC | MEMF_CLEAR);
  68. time3=(struct timeval *)AllocMem(sizeof(struct timeval),
  69.                                MEMF_PUBLIC | MEMF_CLEAR);
  70. tr=(struct timerequest *)AllocMem(sizeof(struct timerequest),
  71.                                MEMF_PUBLIC | MEMF_CLEAR);
  72. /* Make sure we got the memory */
  73. if(!time1 | !time2 | !time3 | !tr) goto cleanexit;
  74. /*---------------------------------------------------------------------------*/
  75. /* Set up values to test time arithmetic with.  In a real application these  */
  76. /* values might be filled in via the GET_SYSTIME command of the timer device */
  77. /*---------------------------------------------------------------------------*/
  78. time1->tv_secs = 3;   time1->tv_micro = 0;           /* 3.0 seconds */
  79. time2->tv_secs = 2;   time2->tv_micro = 500000;      /* 2.5 seconds */
  80. time3->tv_secs = 1;   time3->tv_micro = 900000;      /* 1.9 seconds */
  81.  
  82. printf("Time1 is %ld.%ld\n" , time1->tv_secs,time1->tv_micro);
  83. printf("Time2 is %ld.%ld\n" , time2->tv_secs,time2->tv_micro);
  84. printf("Time3 is %ld.%ld\n\n",time3->tv_secs,time3->tv_micro);
  85. /*-------------------------------*/
  86. /* Open the MICROHZ timer device */
  87. /*-------------------------------*/
  88. error = OpenDevice(TIMERNAME,UNIT_MICROHZ,(struct IORequest *) tr, 0L);
  89. if(error) goto cleanexit;
  90.  
  91. /* Set up to use the special time arithmetic functions */
  92. TimerBase = (struct Library *)tr->tr_node.io_Device;
  93. /*--------------------------------------------------------------------------*/
  94. /* Now that TimerBase is initialized, it is permissible to call the         */
  95. /* time-comparison or time-arithmetic routines.  Result of this example     */
  96. /* is -1 which means the first parameter has greater time value than second */
  97. /* parameter +1 means the second parameter is bigger; 0 means equal.        */
  98. /*--------------------------------------------------------------------------*/
  99. result = CmpTime( time1, time2 );
  100. printf("Time1 and Time2 compare = %ld\n",result);
  101.  
  102. /* Add time2 to time1, result in time1 */
  103. AddTime( time1, time2);
  104. printf("Time1 + Time2 = %ld.%ld\n",time1->tv_secs,time1->tv_micro);
  105.  
  106. /* Subtract time3 from time2, result in time2 */
  107. SubTime( time2, time3);
  108. printf("Time2 - Time3 = %ld.%ld\n",time2->tv_secs,time2->tv_micro);
  109. /*------------------------------------*/
  110. /* Free system resources that we used */
  111. /*------------------------------------*/
  112. cleanexit:
  113.   if (time1)
  114.       FreeMem(time1,sizeof(struct timeval));
  115.   if (time2)
  116.       FreeMem(time2,sizeof(struct timeval));
  117.   if (time3)
  118.       FreeMem(time3,sizeof(struct timeval));
  119.   if (!error)
  120.       CloseDevice((struct IORequest *) tr);
  121.   if (tr)
  122.       FreeMem(tr,sizeof(struct timerequest));
  123. }
  124.